home *** CD-ROM | disk | FTP | other *** search
/ MacAddict 114 / macaddict114.cdr / Software / Audio & Music / WireTapPro.dmg / WireTap Pro 1.1.3 Installer.pkg / Contents / Resources / preinstall < prev    next >
Encoding:
Text File  |  2005-10-14  |  710 b   |  21 lines

  1. #!/bin/sh
  2.  
  3. # -- Quit WireTap, and delete an old versions of it
  4.  
  5. #osascript -e 'tell application "Finder"' -e 'if (name of (every application process)) contains "WireTap" then' -e 'tell application "WireTap" to quit' -e 'end if' -e 'end tell'
  6.  
  7. # -- Don't delete the folder, it confuses the installer
  8. #rm -rf "/Applications/WireTap Pro/"
  9. rm -rf "/Applications/WireTap Pro/WireTap Pro.app"
  10.  
  11. # -- Unload our kext, if it exists, then delete it
  12.  
  13. echo 'kext preinstall script-----'
  14. #kextunload /System/Library/Extensions/AmbrosiaAudioSupport.kext
  15. kextunload -b "com.AmbrosiaSW.AudioSupport"
  16.  
  17. # -- Don't delete the 'kext', it confuses the installer
  18. #rm -rf /System/Library/Extensions/AmbrosiaAudioSupport.kext
  19.  
  20. exit 0
  21.